home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 January - Disc 2 / Macworld (1999-01) (Disk 2).dmg / Mac OS 8.5 Updaters / RealPC⁄Soft Windows / SoftWindows / SoftWindows Upgrade Disk / INSIGNIA / UPDATINS.BAT < prev    next >
Encoding:
DOS Batch File  |  1998-08-24  |  758 b   |  34 lines

  1. rem [
  2. rem    Name:        u.updatins.bat
  3. rem
  4. rem    Derived from:    (original)
  5. rem
  6. rem    Author:        Clive Standbridge
  7. rem
  8. rem    Created on:    July 1997
  9. rem
  10. rem    Sccs ID:    @(#)u.updatins.bat    1.1 08/04/97
  11. rem
  12. rem    Coding Stds:    
  13. rem
  14. rem    Purpose:    Update an file if it's an Insignia version.
  15. rem
  16. rem    Parameters:    1    Name of file to be updated (no path).
  17. rem            2    Destination directory.
  18. rem
  19. rem    Copyright 1997 Insignia Solutions PLC. All rights reserved.
  20. rem ]
  21.  
  22. if not exist %2\%1 goto replace
  23.  
  24. binfind Insignia %2\%1
  25. if errorlevel 1 goto replace
  26. echo %2\%1 is not an Insignia version so not replaced    >>c:\insignia\up.log
  27. goto end
  28.  
  29. :replace
  30. echo Replacing Insignia file %2\%1            >>c:\insignia\up.log
  31. copy /y /b c:\insignia\%1 %2                >>c:\insignia\up.log
  32.  
  33. :end
  34.